Plotting libraries in Python 用Python繪製庫 <<
Previous Next >> Using bokeh 使用散景
Installing bokeh 安裝背景虛化
To use bokeh, we first have to install it. Unlike something like json or Counter from previous exercises, bokeh does not come installed with Python.
If you are using the Anaconda Python distribution (which you should, if you are on Windows!) then you can install bokeh by typing
conda install bokeh
in the Windows command prompt or the bash shell.
On OSX or GNU / Linux, just type
pip3 install bokeh
(If you have are using Python 2, you should do pip install bokeh.)
要使用bokeh,我們首先必須安裝它。與以前的練習中的json或Counter之類的東西不同,Python不附帶bokeh。
如果使用的是Anaconda Python發行版(如果在Windows上,則應使用該發行版),然後可以通過鍵入來安裝bokeh
康達安裝散景
在Windows命令提示符或bash shell中。
在OSX或GNU / Linux上,只需鍵入
pip3安裝散景
(如果您使用的是Python 2,則應執行pip install bokeh。)
Plotting libraries in Python 用Python繪製庫 <<
Previous Next >> Using bokeh 使用散景